home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / getpos.doc < prev    next >
Text File  |  1987-08-18  |  814b  |  38 lines

  1.  
  2.  
  3.         NAME
  4.                 getpos -- get current cursor position
  5.  
  6.         SYNOPSIS
  7.                 position = getpos(page);
  8.                 unsigned int position;      returned position
  9.                 int page;          video page to check
  10.  
  11.  
  12.         DESCRIPTION
  13.         Returns the row and column of the cursor on the specified
  14.         video page.  Row is in upper 8 bits of returned integer
  15.         and column in lower 8 bits.  Values are in binary.
  16.  
  17.  
  18.  
  19.  
  20.         EXAMPLE
  21.  
  22.                unsigned int position;
  23.                short row, column;
  24.                position = getpos(0);    /* on video page 0 */
  25.                row = (position >> 8) & 0xff;
  26.                column = position & 0xff;
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.         This function is found in SMTCx.LIB for the Turbo-C Compiler
  38.